home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / SUBOBJECTS.DTML < prev    next >
Encoding:
Text File  |  1999-11-03  |  1.1 KB  |  37 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <html lang="en"><head><title><dtml-var title_or_id></title></head>
  3. <body bgcolor="#FFFFFF" link="#000099" vlink="#555555">
  4. <dtml-var manage_tabs>
  5.  
  6. <form action="manage_edit">
  7. <table>
  8. <tr>
  9.   <td valign=top>
  10.     Select the kinds of things<br>
  11.     that can be added to objects<br>
  12.     of this kind:
  13.   </td>
  14.   <td>
  15.     <select name="meta_types:list" size=10 multiple>
  16.       <dtml-with "_(selected=selected_meta_types())">
  17.        <dtml-in possible_meta_types mapping>
  18.           <option
  19.             <dtml-if "name in selected">selected</dtml-if>
  20.           ><dtml-var name></option>
  21.        </dtml-in>
  22.       </dtml-with>
  23.     </select>
  24.   </td>
  25. </tr>
  26. <tr><td colspan=2>
  27.   Objects should appear in folder lists?
  28.     <input type=checkbox name=isFolderish value="Y"
  29.       <dtml-if isFolderish>CHECKED</dtml-if>
  30.     ></td></tr>
  31. </tr>
  32. <tr><td colspan=2 align=center>
  33.     <input type=submit value=" Change "></td></tr>
  34. </tr>
  35. </table></form>
  36. </body></html>
  37.